with the recommended replacement, QProcess signal errorOccurred(QProcess::ProcessError error).
It seems this should have caused an issue in Qt6, but we hadn't noticed it yet.
btn->setText(tr("Stop Process"));
layout->addWidget(buttonBox_);
- connect(process, SIGNAL(error(QProcess::ProcessError)),
+ connect(process, SIGNAL(errorOccurred(QProcess::ProcessError)),
this, SLOT(errorX(QProcess::ProcessError)));
connect(process, SIGNAL(finished(int,QProcess::ExitStatus)),
this, SLOT(finishedX(int,QProcess::ExitStatus)));